home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
Tutorial
/
Stepstone_Tutorial
/
Apple.h
next >
Wrap
Text File
|
1992-12-19
|
240b
|
14 lines
// Apple.h
#import "Fruit.h"
@interface Apple : Fruit
{
char * flavor; // additional instance variable
}
+create;
-flavor:(char *)aFlavor;
- (char *)flavor;
- flavor:(char *)aFlavor diameter:(int)aSize color:(char *)aColor;
- grow;
@end